Тестирование
{% if current_user.is_authenticated %} {% if current_user.is_admin %}
Админ-панель
Пользователи
Тесты
Импорт теста
Статистика
{% else %}
Главная
{% endif %}
Профиль
{% endif %}
{% if current_user.is_authenticated %} {% set display_name = current_user.full_name or current_user.username %}
Привет, {{ display_name }}
Выход
{% else %}
Вход
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}